feat(amd-gpu-monitor): add AMD GPU monitoring plugin - #940
Open
dvaxert wants to merge 1 commit into
Open
Conversation
Contributor
Automatic Manifest CheckFile: amd-gpu-monitor/manifest.json
"repository": "https://github.com/noctalia-dev/noctalia-plugins" |
Contributor
|
Plugin "amd-gpu-monitor" is missing some required files:
|
Contributor
Automatic Code Quality ReviewFile: amd-gpu-monitor/BarWidget.qml
+ const tr = key => pluginApi?.tr(key) ?? key;
+ "label": pluginApi?.tr("actions.widget_settings") || "Settings",
+ spacing: 3File: amd-gpu-monitor/Panel.qml
+ pointSize: 24 * Style.uiScaleRatio
+ text: pluginApi?.tr("panel.title") ?? "AMD GPU Monitor"
+ border.width: 1
+ text: pluginApi?.tr("panel.unavailable") ?? "GPU data unavailable"
+ text: mon?.lastError || pluginApi?.tr("panel.check_rocm") || ""
+ cardTitle: pluginApi?.tr("metrics.gpu_use") ?? "GPU Use"
+ cardTitle: pluginApi?.tr("metrics.temperature") ?? "Temperature"
+ label: pluginApi?.tr("temp.junction") ?? "Junction"
+ label: pluginApi?.tr("temp.edge") ?? "Edge"
+ label: pluginApi?.tr("temp.memory") ?? "Memory"
+ cardTitle: pluginApi?.tr("metrics.vram") ?? "VRAM"
+ label: pluginApi?.tr("vram.usage") ?? "Usage"
+ label: pluginApi?.tr("vram.activity") ?? "Activity"
+ cardTitle: pluginApi?.tr("metrics.fan_speed") ?? "Fan Speed"
+ cardTitle: pluginApi?.tr("metrics.power") ?? "Power"
+ cardTitle: pluginApi?.tr("metrics.clock_speeds") ?? "Clock speeds"
+ label: pluginApi?.tr("clocks.sclk") ?? "SCLK"
+ label: pluginApi?.tr("clocks.mclk") ?? "MCLK"
+ label: pluginApi?.tr("clocks.fclk") ?? "FCLK"
+ label: pluginApi?.tr("clocks.socclk") ?? "SOCCLK"
+ label: pluginApi?.tr("clocks.dcefclk") ?? "DCEFCLK"
+ cardTitle: pluginApi?.tr("metrics.vram_activity") ?? "VRAM Activity" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds
amd-gpu-monitor, a Noctalia Shell plugin for real-time AMD GPU monitoring with comprehensive metrics and customizable graphs usingrocm-smi.The plugin provides:
i18nfolder for multi-language supportWhy
AMD GPU users need real-time monitoring of GPU metrics (temperature, clock speeds, VRAM, power) directly from their desktop shell. This plugin provides comprehensive monitoring with visual graphs without requiring external applications.
Testing
amd-gpu-monitor/manifest.jsonwithpython -m json.toolamd-gpu-monitor/preview.pngis a 960x540 PNG (16:9 aspect ratio)text,label, anddescriptionstrings (all use i18n)border.width,spacing,pointSize,radius, andmarginstyle fieldsconsole.logstatementsNotes
rocm-smi(ROCm System Management Interface) to be installed and available inPATHFeatures